
This resource address creates a new rule for the specified alert action.
Upon success, MarkLogic Server returns status code 202 (Accepted). If the alert already exists or if the payload is malformed, a status code of 400 (Bad Request) is returned. A status code of 401 (Unauthorized) is returned if the user does not have the necessary privileges.
manage-admin role, or the following
privilege: http://marklogic.com/xdmp/privileges/manage-admin
The structure of the data in a create rule request is as shown below.
Note: The properties described here are for XML payloads. In general they are the same for
JSON, with the exception that options is expressed in singular form.
namedescriptionuser-idqueryaction-nameexternal-security-iduser-nameoptions
curl -X POST --anyauth --user admin:admin --header "Content-Type:application/json" \
-d '{
"name": "my-rule",
"description": "log to ErrorLog.txt",
"user-name": "manageadmin",
"query": {
"wordQuery": {
"text": "Yorick"
}
},
"action-name": "",
"option": []
}' \
http://localhost:8002/manage/v2/databases/Documents/alert/actions/xdmp:log2/rules?uri=my-alert-config
==> Creates a new rule, named "my-rule", for the alert action, "xdmp:log2."
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.